home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / mkdir.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  52 lines

  1. /* 
  2.  * mkdir.c --
  3.  *
  4.  *    Procedure to map from Unix mkdir system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: mkdir.c,v 1.1 88/06/19 14:31:37 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16. #include "compatInt.h"
  17. #include <sys/file.h>
  18.  
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * mkdir --
  24.  *
  25.  *    Procedure to map from Unix mkdir system call to Sprite Fs_MakeDir.
  26.  *
  27.  * Results:
  28.  *    UNIX_ERROR is returned upon error, with the actual error code
  29.  *    stored in errno.  Otherwise UNIX_SUCCESS is returned.
  30.  *
  31.  * Side effects:
  32.  *    None.
  33.  *
  34.  *----------------------------------------------------------------------
  35.  */
  36.  
  37. int
  38. mkdir(pathName, permissions)
  39.     char *pathName;        /* The name of the directory to create */
  40.     int permissions;        /* Permission mask to use on creation */
  41. {
  42.     ReturnStatus status;    /* result returned by Fs_Open */
  43.  
  44.     status = Fs_MakeDir(pathName, permissions);
  45.     if (status != SUCCESS) {
  46.     errno = Compat_MapCode(status);
  47.     return(UNIX_ERROR);
  48.     } else {
  49.     return(UNIX_SUCCESS);
  50.     }
  51. }
  52.